home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / comm / tcp / samba_2.0.6.lha / source / amiga_rcs / stat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-25  |  2.5 KB  |  104 lines

  1. head    1.1;
  2. access;
  3. symbols
  4.     V1_12:1.1
  5.     V1_11:1.1
  6.     V1_10:1.1
  7.     V1_9:1.1
  8.     V1_8:1.1
  9.     V1_7:1.1
  10.     V1_6:1.1
  11.     V1_5:1.1
  12.     V1_4:1.1
  13.     V1_3:1.1
  14.     V1_2:1.1
  15.     V1_1:1.1;
  16. locks
  17.     olsen:1.1; strict;
  18. comment    @ * @;
  19.  
  20.  
  21. 1.1
  22. date    99.02.09.08.25.05;    author olsen;    state Exp;
  23. branches;
  24. next    ;
  25.  
  26.  
  27. desc
  28. @.
  29. @
  30.  
  31.  
  32. 1.1
  33. log
  34. @.
  35. @
  36. text
  37. @#ifndef _WRAPPER_STAT_H
  38. #define _WRAPPER_STAT_H
  39.  
  40. /*
  41.  * $Id: stat.h 1.1 1999/02/09 08:25:05 olsen Exp olsen $
  42.  *
  43.  * :ts=4
  44.  *
  45.  * AmigaOS wrapper routines for Samba 2.0.0, using the AmiTCP V4 API
  46.  * and the SAS/C V6.58 compiler.
  47.  *
  48.  * Copyright (C) 1999 by Olaf `Olsen' Barthel <olsen@@sourcery.han.de>
  49.  *
  50.  * This program is free software; you can redistribute it and/or modify
  51.  * it under the terms of the GNU General Public License as published by
  52.  * the Free Software Foundation; either version 2 of the License, or
  53.  * (at your option) any later version.
  54.  * 
  55.  * This program is distributed in the hope that it will be useful,
  56.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  57.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  58.  * GNU General Public License for more details.
  59.  * 
  60.  * You should have received a copy of the GNU General Public License
  61.  * along with this program; if not, write to the Free Software
  62.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  63.  */
  64.  
  65. /****************************************************************************/
  66.  
  67. #include <sys/types.h>
  68. #include <sys/commifmt.h>
  69. #include <time.h>
  70.  
  71. struct stat
  72. {
  73.     dev_t    st_dev;        /* inode's device */
  74.     ino_t    st_ino;        /* inode's number */
  75.     mode_t    st_mode;    /* inode protection mode */
  76.     u_short    st_nlink;    /* number of hard links */
  77.     uid_t    st_uid;        /* user ID of the file's owner */
  78.     gid_t    st_gid;        /* group ID of the file's group */
  79.     u_long    st_rdev;    /* device type */
  80.     off_t    st_size;    /* file size, in bytes */
  81.     time_t    st_atime;    /* time of last access */
  82.     time_t    st_mtime;    /* time of last data modification */
  83.     time_t    st_ctime;    /* time of last file status change */
  84.     long    st_blksize;    /* optimal blocksize for I/O */
  85.     long    st_blocks;    /* blocks allocated for file */
  86. };
  87.  
  88. /****************************************************************************/
  89.  
  90. struct statfs
  91. {
  92.     long f_fsize;        /* fundamental file system block size */
  93.     long f_bsize;        /* optimal transfer block size */
  94.     long f_blocks;        /* total data blocks in file system */
  95.     long f_bfree;        /* free blocks in fs */
  96.     long f_bavail;        /* free blocks avail to non-superuser */
  97.     long f_spare[9];    /* spare for later */
  98. };
  99.  
  100. /****************************************************************************/
  101.  
  102. #endif /* _WRAPPER_STAT_H */
  103. @
  104.